Move the _GtkVolumeButton definition into the header to make it possible
authorMatthias Clasen <matthiasc@src.gnome.org>
Wed, 11 Feb 2009 16:31:47 +0000 (16:31 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 11 Feb 2009 16:31:47 +0000 (16:31 +0000)
        * gtk/gtkvolumebutton.[hc]: Move the _GtkVolumeButton definition
        into the header to make it possible to derive from GtkVoumeButton.
        Reported by Chris Lord.

svn path=/trunk/; revision=22315

ChangeLog
gtk/gtkvolumebutton.c
gtk/gtkvolumebutton.h

index 6e97543e9a6d580818b32da842ac1323d619c151..3d011fa98de46f3899f318b08f2ae7384fd55575 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-02-11  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 508545 – No way to identify terminal classes from documentation
+
+       * gtk/gtkvolumebutton.[hc]: Move the _GtkVolumeButton definition
+       into the header to make it possible to derive from GtkVoumeButton.
+       Reported by Chris Lord.
+
 2009-02-11  Matthias Clasen  <mclasen@redhat.com>
 
        Bug 571196 – gtk_binding_entry_add_signall deprecated without 
index af27691b765ae7d82c0a751b7f2e0bb9b0988b44..0ea6a99819b468cfd9026ecda983f9553fab2469 100644 (file)
 
 #define EPSILON (1e-10)
 
-struct _GtkVolumeButton
-{
-  GtkScaleButton  parent;
-};
 
 static gboolean        cb_query_tooltip (GtkWidget       *button,
                                   gint             x,
index c69724fe11ef888ec0e8f0b83989f9d624639fe3..6084e983b288aab39835f847d1f489fe23470f7c 100644 (file)
@@ -48,6 +48,11 @@ G_BEGIN_DECLS
 typedef struct _GtkVolumeButton       GtkVolumeButton;
 typedef struct _GtkVolumeButtonClass  GtkVolumeButtonClass;
 
+struct _GtkVolumeButton
+{
+  GtkScaleButton  parent;
+};
+
 struct _GtkVolumeButtonClass
 {
   GtkScaleButtonClass parent_class;